home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / bin / plog < prev    next >
Encoding:
Text File  |  2010-08-08  |  146 b   |  8 lines

  1. #!/bin/sh
  2.  
  3. if [ -s /var/log/ppp.log ]; then
  4.   exec tail "$@" /var/log/ppp.log
  5. else
  6.   exec tail "$@" /var/log/syslog | grep ' \(pppd\|chat\)\['
  7. fi
  8.